home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19971216-19980424 / 000429_news@newsmaster….columbia.edu _Wed Apr 15 16:28:01 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id QAA16196
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 15 Apr 1998 16:28:01 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id QAA16428
  7.     for kermit.misc@watsun; Wed, 15 Apr 1998 16:28:00 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Help with Kermit95 Server
  12. Date: 15 Apr 1998 20:27:58 GMT
  13. Organization: Columbia University
  14. Lines: 41
  15. Message-ID: <6h358e$rng$1@apakabar.cc.columbia.edu>
  16. References: <3534FCD9.6CD79301@sonalysts.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:8635
  19.  
  20. In article <3534FCD9.6CD79301@sonalysts.com>,
  21. Michael C. Smith <mcs@sonalysts.com> wrote:
  22. : I am developing software that (among other things) performs automated
  23. : file transfer between two companies and I am using Kermit95 as my
  24. : communications package.  Basically, each system sits idle until a
  25. : connection is made from the other system, at which time the receiving
  26. : system goes into server mode.
  27. Sounds like a fertile ground for deadlocks :-)
  28.  
  29. : Is there a way to detect (on the server side) failed or invalid login
  30. : attempts to the Kermit server?
  31. Windows 95, as you know, offers no such thing as remote logins and therefore
  32. no security for them.  Kermit 95 offers three levels of security:
  33.  
  34.  1. None: anybody who can dial the number gets in.
  35.  
  36.  2. One-user/one-password authentication built into the K95 server
  37.     via SET SERVER LOGIN.  Anybody who can dial the number and knows the
  38.     username and password gets in.
  39.  
  40.  3. Host mode, which not only supports multiple userid/password 
  41.     combinations, but also enforces filesystem access restrictions.
  42.  
  43. (1) and (2) generally are implemented using a script that waits for the
  44. connection and then puts Kermit 95 in server mode.  A variety of security
  45. measures are possible with the SET SERVER and DISABLE commands.
  46.  
  47. (3) presents itself interactively to the caller and is therefore less
  48. usable from scripts.
  49.  
  50. : Since the majority of connections will be automated, the companies
  51. : involved want some form of notification if someone attempts to connect
  52. : to the system using an invalid login/pwd.
  53. :
  54. So you might try K95 server mode with the desried services DISABLEd, and
  55. with LOG TRANSACTIONS, which records failed and successful logins in the
  56. log file of your choice.
  57.  
  58. - Frank